home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / vbcc-68k-src / machines / amiga68k / libsrc / stdio / feof.c < prev    next >
C/C++ Source or Header  |  1999-01-01  |  83b  |  10 lines

  1. #include <stdio.h>
  2.  
  3. #undef feof
  4.  
  5. int feof(FILE *f)
  6. {
  7.     return(f->flags&_EOF);
  8. }
  9.  
  10.